home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1991 …esperately Seeking Seven / Desperately Seeking Seven.2mg / Dev.CD.8 / Essentials / Tools / DTS.Samples / SC02BusyBox / BusyBox.asm / UGlobals.asm < prev    next >
Encoding:
Assembly Source File  |  1990-05-25  |  1.5 KB  |  56 lines  |  [04] ASCII Text (0x0000)

  1. ***********************************************************************
  2. *
  3. * busybox globals.asm -- Version 3.0 
  4. *
  5. * Copyright (c)
  6. * Apple Computer, Inc.  1986-1990
  7. * All Rights Reserved.
  8. *
  9. * Developer Technical Support Apple II Sample Code
  10. *
  11. * This file contains the global variables used by the busybox program
  12. * and the code which intializes the global variables.
  13. *
  14. ************************************************************************
  15.  
  16.                case on
  17.  
  18.                copy busybox.equ
  19.  
  20.                longi on
  21.                longa on
  22.  
  23. initGlobals    start
  24.  
  25.                stz staggerCount
  26.                rts
  27.  
  28. userID         entry
  29.                dc i2'0'
  30.  
  31. quitFlag       entry
  32.                dc i2'0'
  33.  
  34. event          entry
  35.                dc i2'0'                  ;wmWhat
  36.                dc i4'0'                  ;wmMessage
  37.                dc i4'0'                  ;wmWhen
  38.                dc i4'0'                  ;wmWhere
  39.                dc i2'0'                  ;wmModifiers
  40.                dc i4'0'                  ;wmTaskData
  41.                dc i4'$001FFFFF'          ;wmTaskMask
  42.                dc i4'0'                  ;wmLastClickTick
  43.                dc i2'0'                  ;wmClickCount
  44.                dc i4'0'                  ;wmTaskData2
  45.                dc i4'0'                  ;wmTaskData3
  46.                dc i4'0'                  ;wmTaskData4
  47.                dc i4'0'                  ;wmLastClickPt
  48.  
  49. staggerCount   entry
  50.                dc i2'0'
  51.  
  52. windowList     entry
  53.                ds NumWindows*4
  54.  
  55.                end
  56.